From 5b6313f16f508882a0ea67716b7dbaa1c6967f04 Mon Sep 17 00:00:00 2001 From: dujinkim Date: Mon, 30 Jun 2025 08:28:13 +0000 Subject: (대표님) 20250630 16시 - 유저 도메인별 라우터 분리와 보안성검토 대응 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- .../engineering/(engineering)/pq-criteria/page.tsx | 70 ++++++++++++++++++++++ 1 file changed, 70 insertions(+) create mode 100644 app/[lng]/engineering/(engineering)/pq-criteria/page.tsx (limited to 'app/[lng]/engineering/(engineering)/pq-criteria/page.tsx') diff --git a/app/[lng]/engineering/(engineering)/pq-criteria/page.tsx b/app/[lng]/engineering/(engineering)/pq-criteria/page.tsx new file mode 100644 index 00000000..7785b541 --- /dev/null +++ b/app/[lng]/engineering/(engineering)/pq-criteria/page.tsx @@ -0,0 +1,70 @@ +import * as React from "react" +import { type SearchParams } from "@/types/table" +import { getValidFilters } from "@/lib/data-table" +import { Skeleton } from "@/components/ui/skeleton" +import { DataTableSkeleton } from "@/components/data-table/data-table-skeleton" +import { Shell } from "@/components/shell" +import { searchParamsCache } from "@/lib/pq/validations" +import { getPQs } from "@/lib/pq/service" +import { PqsTable } from "@/lib/pq/table/pq-table" +import { ProjectSelectorWrapper } from "@/components/pq/project-select-wrapper" + +interface IndexPageProps { + searchParams: Promise +} + +export default async function IndexPage(props: IndexPageProps) { + const searchParams = await props.searchParams + const search = searchParamsCache.parse(searchParams) + + // filters가 없는 경우를 처리 + + const validFilters = getValidFilters(search.filters) + + // onlyGeneral: true로 설정하여 일반 PQ 항목만 가져옴 + const promises = Promise.all([ + getPQs({ + ...search, + filters: validFilters, + }, null, true) + ]) + + return ( + +
+
+

+ Pre-Qualification Check Sheet +

+

+ 협력업체 등록을 위한, 협력업체가 제출할 PQ 항목을 관리할 수 있습니다. +

+
+ +
+ + }> + {/* */} + + + + } + > + + +
+ ) +} \ No newline at end of file -- cgit v1.2.3